{% extends "base.html" %} {% block title %}Patient Appointments - Admin Panel{% endblock %} {% block content %}

Patient Appointments

{{ patient_user.name }} - All appointment records

Back to Patient
{% if patient_user.profile_picture %} {{ patient_user.name }} {% else %} {{ patient_user.name[0].upper() }} {% endif %}
{{ patient_user.name }}

{{ patient_user.email }}

Appointments
{% if appointments %}
{% for appointment in appointments %} {% endfor %}
Date Time Doctor Type Disease Category Status Charges Actions
{{ appointment.appointment_date.strftime('%B %d, %Y') }} {{ appointment.appointment_time.strftime('%I:%M %p') }}
{{ appointment.doctor.user.name }}
{{ appointment.doctor.specialization }}
{{ appointment.appointment_type.title() }} {{ appointment.disease_category }} {% if appointment.status == 'pending' %} Pending {% else %} {{ appointment.status.title() }} {% endif %} Rs. {{ appointment.charges }} View
{% else %}
No appointments found

This patient has no appointments with the selected filter.

{% endif %}
{% endblock %}